//
var TN_Widget = function() {
var months = ["", "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
return {
newWindow : true,
CreateEventRow : function(row, isAlt) {
var t = row[4].split("/");
t[0] = months[t[0]];
t[2] = ", " + t[2];
return "
" +
t[0] + " " + "" + t[1] + "" +
t[2] + " " +
row[3].substring(0,3) + " " +
row[5] + " | " +
row[0] + " " +
row[1] + " - " +
row[2] + " | " + this.btnText + "" +
" |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kwds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
var footerLink = "";
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else if(document.querySelector(".tnpl_results_container") != null) {
document.querySelector(".tnpl_results_container").innerHTML = "" + newTable.join('') + "" + footerLink + "
";
}
else
document.write("" + newTable.join('') + "" + footerLink + "
");
}
};
}();
//BPW-TNSERV-03A
TN_Widget.AddCss('//s3.amazonaws.com/TNService/pl-widget/styles/tnpl-results-widget.css');
TN_Widget.CreateTable([['Jamey Johnson','J.D. Legends','Franklin, OH','Friday','7/25/2025','7:00 PM','7001836','Jamey-Johnson-7-25-2025'],['Jamey Johnson','J.D. Legends','Franklin, OH','Saturday','7/26/2025','7:00 PM','7001837','Jamey-Johnson-7-26-2025'],['Jamey Johnson','Indian Ranch','Webster, MA','Thursday','8/7/2025','7:00 PM','7180600','Jamey-Johnson-8-7-2025'],['Jamey Johnson','Univest Performance Center','Quakertown, PA','Friday','8/8/2025','6:00 PM','7197388','Jamey-Johnson-8-8-2025'],['Jamey Johnson','Hollywood Casino at Charles Town Races','Charles Town, WV','Saturday','8/9/2025','8:00 PM','7059360','Jamey-Johnson-8-9-2025'],['Jamey Johnson','Carolina Crossroads Amphitheatre','Roanoke Rapids, NC','Friday','8/15/2025','7:00 PM','7209698','Jamey-Johnson-8-15-2025'],['Jamey Johnson','Brushy Mountain State Penitentiary','Petros, TN','Saturday','8/16/2025','7:30 PM','7087110','Jamey-Johnson-8-16-2025'],['Jamey Johnson','Louisville Palace','Louisville, KY','Sunday','8/17/2025','8:00 PM','7196503','Jamey-Johnson-8-17-2025'],['Jamey Johnson','Two Dimes','Tuscaloosa, AL','Thursday','8/21/2025','8:00 PM','7270327','Jamey-Johnson-8-21-2025'],['Jamey Johnson','Dothan Civic Center','Dothan, AL','Friday','8/22/2025','7:00 PM','7251750','Jamey-Johnson-8-22-2025']],'"jamey johnson"','https://www.ticketnetwork.com');